/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  9
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    format      ascii;
    class       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (0 0 0);
//rho 0;
boundaryField
{
    Inlet
    {
        type            uniformFixedValue;
        rho		 rho;
        rhoInlet	 1000;
        uniformValue	sine;
        amplitude
        {
                            
         type constant;
	 value (1 0 0);
	 };
         frequency	20;
         start		 0;
         level
         {
          type		constant;	
          value 	(5 0 0);
         }
    }

    Outlet
    {
        type            zeroGradient;
        
    }
    
    Walls
    {
    	type		noSlip;
  
    }

    FrontAndBack
    {
        type            empty;
    }
}

// ************************************************************************* //
